home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DELPHI / SQLBUILD.ZIP / SQL14_D2.ZIP / SQLBLD05.DFM / SQLBLD05.txt
Encoding:
Text File  |  1996-09-24  |  6.5 KB  |  293 lines

  1. object frmJoinEditor: TfrmJoinEditor
  2.   Left = 243
  3.   Top = 117
  4.   HelpContext = 2018
  5.   BorderIcons = [biSystemMenu]
  6.   BorderStyle = bsDialog
  7.   Caption = 'Join Editor'
  8.   ClientHeight = 301
  9.   ClientWidth = 349
  10.   Font.Color = clBlack
  11.   Font.Height = -11
  12.   Font.Name = 'Arial'
  13.   Font.Style = []
  14.   Position = poScreenCenter
  15.   OnCreate = FormCreate
  16.   OnDestroy = FormDestroy
  17.   OnShow = FormShow
  18.   PixelsPerInch = 96
  19.   TextHeight = 14
  20.   object pnlCustom: TPanel
  21.     Left = 0
  22.     Top = 0
  23.     Width = 349
  24.     Height = 264
  25.     Align = alClient
  26.     TabOrder = 2
  27.     object Bevel1: TBevel
  28.       Left = 1
  29.       Top = 40
  30.       Width = 382
  31.       Height = 235
  32.       Shape = bsTopLine
  33.     end
  34.     object lblJoinOnClause: TLabel
  35.       Left = 15
  36.       Top = 191
  37.       Width = 71
  38.       Height = 15
  39.       Caption = '&Join On clause'
  40.     end
  41.     object lblOuterJoinType: TLabel
  42.       Left = 114
  43.       Top = 160
  44.       Width = 84
  45.       Height = 14
  46.       Caption = '&Type of outer join'
  47.       Transparent = True
  48.     end
  49.     object Label3: TLabel
  50.       Left = 61
  51.       Top = 58
  52.       Width = 222
  53.       Height = 14
  54.       Caption = 'Set the join criteria for these two tables '
  55.       Font.Color = clBlack
  56.       Font.Height = -11
  57.       Font.Name = 'Arial'
  58.       Font.Style = [fsBold]
  59.       ParentFont = False
  60.     end
  61.     object lblTypeOfJoinCustom: TLabel
  62.       Left = 16
  63.       Top = 79
  64.       Width = 56
  65.       Height = 14
  66.       Caption = '&Type of join'
  67.       FocusControl = cbTable1JoinCol
  68.     end
  69.     object label1: TLabel
  70.       Left = 103
  71.       Top = 11
  72.       Width = 138
  73.       Height = 19
  74.       Caption = 'Customized Joins'
  75.       Font.Color = clBlack
  76.       Font.Height = -16
  77.       Font.Name = 'Arial'
  78.       Font.Style = [fsBold]
  79.       ParentFont = False
  80.     end
  81.     object rbInnerJoin: TRadioButton
  82.       Left = 15
  83.       Top = 131
  84.       Width = 79
  85.       Height = 17
  86.       Caption = '&Inner Join'
  87.       Checked = True
  88.       TabOrder = 0
  89.       TabStop = True
  90.       OnClick = rbStraightJoinClick
  91.     end
  92.     object rbOuterJoin: TRadioButton
  93.       Left = 15
  94.       Top = 159
  95.       Width = 83
  96.       Height = 17
  97.       Caption = '&Outer Join'
  98.       TabOrder = 1
  99.       OnClick = rbStraightJoinClick
  100.     end
  101.     object cboxOuterSubType: TComboBox
  102.       Left = 200
  103.       Top = 156
  104.       Width = 129
  105.       Height = 22
  106.       Style = csDropDownList
  107.       Font.Color = clBlack
  108.       Font.Height = -11
  109.       Font.Name = 'Arial'
  110.       Font.Style = []
  111.       ItemHeight = 14
  112.       Items.Strings = (
  113.         'Left'
  114.         'Right'
  115.         'Full')
  116.       ParentFont = False
  117.       TabOrder = 2
  118.     end
  119.     object EditJoinCriteria: TBtnEdit
  120.       Left = 15
  121.       Top = 206
  122.       Width = 314
  123.       Height = 23
  124.       Glyph.Data = {
  125.         DE000000424DDE00000000000000360000002800000009000000060000000100
  126.         180000000000A800000000000000000000000000000000000000007F7F007F7F
  127.         007F7F007F7F007F7F007F7F007F7F007F7F007F7F33007F7F007F7F007F7F00
  128.         7F7F007F7F007F7F007F7F007F7F007F7F37000000000000007F7F0000000000
  129.         00007F7F000000000000007F7F39000000000000007F7F000000000000007F7F
  130.         000000000000007F7F3A007F7F007F7F007F7F007F7F007F7F007F7F007F7F00
  131.         7F7F007F7F3C007F7F007F7F007F7F007F7F007F7F007F7F007F7F007F7F007F
  132.         7F32}
  133.       TabOrder = 3
  134.       OnBtnClick = EditJoinCriteriaBtnClick
  135.     end
  136.     object btnSimple: TButton
  137.       Left = 255
  138.       Top = 235
  139.       Width = 75
  140.       Height = 25
  141.       Hint = 'Show simple join panel'
  142.       Caption = '&Simple'
  143.       TabOrder = 4
  144.       OnClick = btnCustomClick
  145.     end
  146.   end
  147.   object pnlSimple: TPanel
  148.     Left = 0
  149.     Top = 0
  150.     Width = 349
  151.     Height = 264
  152.     Align = alClient
  153.     TabOrder = 1
  154.     object Label2: TLabel
  155.       Left = 25
  156.       Top = 14
  157.       Width = 299
  158.       Height = 16
  159.       Caption = 'Choose the way these two tables will be joined'
  160.       Font.Color = clBlack
  161.       Font.Height = -13
  162.       Font.Name = 'Arial'
  163.       Font.Style = [fsBold]
  164.       ParentFont = False
  165.       WordWrap = True
  166.     end
  167.     object lblTable1: TLabel
  168.       Left = 16
  169.       Top = 90
  170.       Width = 103
  171.       Height = 14
  172.       Caption = '&First table join column'
  173.       FocusControl = cbTable1JoinCol
  174.     end
  175.     object lblJoinMethod: TLabel
  176.       Left = 16
  177.       Top = 138
  178.       Width = 123
  179.       Height = 14
  180.       Caption = '&Expression to use for join'
  181.       FocusControl = cbJoinExpression
  182.     end
  183.     object lblTable2: TLabel
  184.       Left = 16
  185.       Top = 186
  186.       Width = 119
  187.       Height = 14
  188.       Caption = '&Second table join column'
  189.       FocusControl = cbTable2JoinCol
  190.     end
  191.     object lblTypeOfJoinSimple: TLabel
  192.       Left = 16
  193.       Top = 44
  194.       Width = 56
  195.       Height = 14
  196.       Caption = '&Type of join'
  197.       FocusControl = cbTable1JoinCol
  198.     end
  199.     object cbTable1JoinCol: TComboBox
  200.       Left = 10
  201.       Top = 105
  202.       Width = 327
  203.       Height = 22
  204.       Style = csDropDownList
  205.       ItemHeight = 14
  206.       TabOrder = 1
  207.       OnChange = cbTable1JoinColChange
  208.     end
  209.     object cbJoinExpression: TComboBox
  210.       Left = 10
  211.       Top = 154
  212.       Width = 327
  213.       Height = 22
  214.       Style = csDropDownList
  215.       ItemHeight = 14
  216.       Items.Strings = (
  217.         'Is equal to'
  218.         'Is NOT equal to'
  219.         'Is greater than'
  220.         'Is greater than or equal to'
  221.         'Is less than'
  222.         'Is less than or equal to')
  223.       TabOrder = 2
  224.     end
  225.     object cbTable2JoinCol: TComboBox
  226.       Left = 10
  227.       Top = 202
  228.       Width = 327
  229.       Height = 22
  230.       Style = csDropDownList
  231.       ItemHeight = 14
  232.       TabOrder = 3
  233.       OnChange = cbTable1JoinColChange
  234.     end
  235.     object cbTypeOfJoin: TComboBox
  236.       Left = 10
  237.       Top = 61
  238.       Width = 327
  239.       Height = 22
  240.       Style = csDropDownList
  241.       ItemHeight = 14
  242.       Items.Strings = (
  243.         'One to Many'
  244.         'Many to One')
  245.       TabOrder = 0
  246.       OnChange = cbTypeOfJoinChange
  247.     end
  248.     object btnCustom: TButton
  249.       Left = 262
  250.       Top = 233
  251.       Width = 75
  252.       Height = 25
  253.       Hint = 'Show custom join panel'
  254.       Caption = '&Custom'
  255.       TabOrder = 4
  256.       OnClick = btnCustomClick
  257.     end
  258.   end
  259.   object Panel1: TPanel
  260.     Left = 0
  261.     Top = 264
  262.     Width = 349
  263.     Height = 37
  264.     Align = alBottom
  265.     TabOrder = 0
  266.     object btnOk: TBitBtn
  267.       Left = 16
  268.       Top = 4
  269.       Width = 101
  270.       Height = 29
  271.       TabOrder = 0
  272.       OnClick = btnOkClick
  273.       Kind = bkOK
  274.     end
  275.     object BitBtn2: TBitBtn
  276.       Left = 122
  277.       Top = 4
  278.       Width = 101
  279.       Height = 29
  280.       TabOrder = 1
  281.       Kind = bkCancel
  282.     end
  283.     object BitBtn3: TBitBtn
  284.       Left = 228
  285.       Top = 4
  286.       Width = 101
  287.       Height = 29
  288.       TabOrder = 2
  289.       Kind = bkHelp
  290.     end
  291.   end
  292. end
  293.